home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
progargslib.lha
/
ProgArgs
/
Examples
/
Support
/
lists.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-04-08
|
330b
|
19 lines
#ifndef SUPPORT_LISTS_H
#define SUPPORT_LISTS_H
#ifndef EXEC_LISTS_H
#include <exec/lists.h>
#endif
void *num_to_node(struct List *lst,ULONG num);
ULONG node_to_num(struct List *lst,void *nd);
void *head_node(struct List *lst);
void *tail_node(struct List *lst);
void *next_node(void *nd);
void *prev_node(void *nd);
#endif